Use proper quotation marks
authorWilliam Jon McCann <william.jon.mccann@gmail.com>
Thu, 18 Jul 2013 02:37:50 +0000 (22:37 -0400)
committerWilliam Jon McCann <william.jon.mccann@gmail.com>
Thu, 18 Jul 2013 02:37:50 +0000 (22:37 -0400)
As per https://wiki.gnome.org/GnomeOS/Design/Whiteboards/Typography

gtk/gtkappchooserdialog.c
gtk/gtkappchooserwidget.c
gtk/gtkfilechooserdefault.c
gtk/gtkprintunixdialog.c

index 29b1627d0221f9b797d984469bd83463d5b095d7..bb0ffc9ceb4710477c66e40155855cb1d7c3aa64 100644 (file)
@@ -331,16 +331,16 @@ set_dialog_properties (GtkAppChooserDialog *self)
   if (name != NULL)
     {
       /* Translators: %s is a filename */
-      label = g_strdup_printf (_("Select an application to open \"%s\""), name);
-      string = g_strdup_printf (_("No applications available to open \"%s\""),
+      label = g_strdup_printf (_("Select an application to open “%s”"), name);
+      string = g_strdup_printf (_("No applications available to open “%s”"),
                                 name);
     }
   else
     {
       /* Translators: %s is a file type description */
-      label = g_strdup_printf (_("Select an application for \"%s\" files"),
+      label = g_strdup_printf (_("Select an application for “%s” files"),
                                unknown ? self->priv->content_type : description);
-      string = g_strdup_printf (_("No applications available to open \"%s\" files"),
+      string = g_strdup_printf (_("No applications available to open “%s” files"),
                                unknown ? self->priv->content_type : description);
     }
 
index 83cab70d1a9c4e8db8bda299eb4c264f5b153a70..10309bed5101b28eb013985b2b0076f8cde3b78b 100644 (file)
@@ -657,7 +657,7 @@ add_no_applications_label (GtkAppChooserWidget *self)
       if (self->priv->content_type)
        desc = g_content_type_get_description (self->priv->content_type);
 
-      string = text = g_strdup_printf (_("No applications available to open \"%s\""),
+      string = text = g_strdup_printf (_("No applications available to open “%s”"),
                                        desc);
       g_free (desc);
     }
index 9d216c7a33d3ed649add07423d2a16856c46e59c..b25c0bc9a82a6c770d7afe48adb75cf7a26890a0 100644 (file)
@@ -5475,10 +5475,10 @@ confirm_dialog_should_accept_filename (GtkFileChooserDefault *impl,
                                   GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT,
                                   GTK_MESSAGE_QUESTION,
                                   GTK_BUTTONS_NONE,
-                                  _("A file named \"%s\" already exists.  Do you want to replace it?"),
+                                  _("A file named “%s” already exists.  Do you want to replace it?"),
                                   file_part);
   gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog),
-                                           _("The file already exists in \"%s\".  Replacing it will "
+                                           _("The file already exists in “%s”.  Replacing it will "
                                              "overwrite its contents."),
                                            folder_display_name);
 
index db0c5599e5fc57e794512d2a6e92cc0e4693410a..cbf0e2fa5896cf70143f487da4f8c268834c89fc 100644 (file)
@@ -673,11 +673,11 @@ error_dialogs (GtkPrintUnixDialog *print_dialog,
                                                        GTK_DIALOG_DESTROY_WITH_PARENT,
                                                        GTK_MESSAGE_QUESTION,
                                                        GTK_BUTTONS_NONE,
-                                                       _("A file named \"%s\" already exists.  Do you want to replace it?"),
+                                                       _("A file named “%s” already exists.  Do you want to replace it?"),
                                                        basename);
 
                       gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog),
-                                                                _("The file already exists in \"%s\".  Replacing it will "
+                                                                _("The file already exists in “%s”.  Replacing it will "
                                                                 "overwrite its contents."),
                                                                 dirname);